home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
Tutorial
/
Cookbook
/
09.form
/
MyObject.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-12-19
|
320 b
|
25 lines
/* Generated by Interface Builder */
#import "MyObject.h"
#import <appkit/Form.h>
@implementation MyObject
- setMyText:anObject
{
myText = anObject;
return self;
}
- printText:sender
{
const char *strptr;
strptr = [myText stringValue];
printf("String = %s\n", strptr);
return self;
}
@end